home *** CD-ROM | disk | FTP | other *** search
- /*
- * DemoMain.c
- * Copyright © 1993, Apple Computer Inc. All rights reserved.
- */
- #include "DemoApp.h"
-
-
- void
- main()
- {
- DemoApp *demoApp;
-
- demoApp = new(DemoApp);
- demoApp->IDemoApp();
- demoApp->Run();
- demoApp->Exit();
- }
-